| 
       
  | 
     
       
  | 
     
       
  | 
    
| 
       
         | 
     
       OnMouseClick Method, SftTree Class  | 
     
Raises the MouseClick event.
Syntax SftTree Class (Softelvdm.SftTreeNET)
VB  | 
      Protected Overrides Sub OnMouseClick( ByVal e As MouseEventArgs )  | 
    
C#  | 
      protected override void OnMouseClick( MouseEventArgs e );  | 
    
C++  | 
      protected: virtual void OnMouseClick( MouseEventArgs^ e );  | 
    
e
The event data.
Comments
The OnMouseClick method raises the MouseClick event.
Raising an event invokes the event handler through a delegate.
The OnMouseClick method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnMouseClick in a derived class, make sure to call the base class's OnMouseClick method so that registered delegates receive the event.